home *** CD-ROM | disk | FTP | other *** search
/ Acorn RISC PD-CD 1 / Acorn RISC PD-CD 1.iso / languages / dde / _pc / h / colourmenu < prev    next >
Text File  |  1992-02-09  |  960b  |  31 lines

  1. (*
  2.  * Title: colourmenu.h
  3.  * Purpose: create a wimp colour setting menu
  4.  *
  5.  *)
  6.  
  7. # ifndef __colourmenu_h
  8. # define __colourmenu_h
  9. # ifndef __menu_h
  10. # include "menu.h"
  11. # endif
  12.  
  13. (* --------------------------- colourmenu_make ----------------------------
  14.  * Description:   Creates a menu containing the 16 Wimp colours, with
  15.  *                an optional "None" entry. Text in colour is written in
  16.  *                black or white, depending on background.
  17.  *
  18.  * Parameters:    char *title      -- null-terminated string for menu title
  19.  *                BOOL includeNone -- whether to include "None" entry
  20.  * Returns:       On successful completion, pointer to created menu structure
  21.  *                otherwise null.
  22.  * Other Info:    Hits on this menu start from 1 as for other menus
  23.  *                see menu module for details.
  24.  *)
  25. function colourmenu_make(title : string;
  26.                 includeNone : boolean) : menu; extern;
  27.  
  28. #endif
  29.  
  30. (* end colourmenu.h *)
  31.